home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / templates / Java / Servlet.java < prev    next >
Text File  |  2003-06-28  |  470b  |  23 lines

  1. //Description: Java Servlet|
  2. /* Created: {$DateTime} by {$UserName}
  3. **
  4. **
  5. */
  6.  
  7. import javax.servlet.*;
  8. import javax.servlet.http.*;
  9.  
  10. public class {$FileTitleNoExt} extends HttpServlet
  11. {
  12.  
  13.   protected void doGet(HttpServletRequest req, HttpServletResponse resp)
  14.     throws ServletException, java.io.IOException {
  15.  
  16.   }
  17.  
  18.   protected void doPost(HttpServletRequest req, HttpServletResponse resp)
  19.     throws ServletException, java.io.IOException {
  20.  
  21.   }
  22. }
  23.